home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 1 / PC World Interactive 1 - Nisan 1997.iso / prog / masa / 2 / editdlg.h < prev    next >
C/C++ Source or Header  |  1996-08-30  |  1KB  |  61 lines

  1. #ifndef EDITDLG_H
  2. #define EDITDLG_H
  3.  
  4. // EditDlg.h : header file
  5. //
  6.  
  7. /////////////////////////////////////////////////////////////////////////////
  8. // EditDlg dialog
  9.  
  10. class EditDlg : public CDialog
  11. {
  12. // Construction
  13. public:
  14.     EditDlg(CWnd* pParent = NULL);   // standard constructor
  15.  
  16.     char menu_sel[30], app_sel[30];
  17.     menu_struct *menus, *newmenu;
  18.     app_struct *apps, *newapp;
  19.     int index;
  20.     hack *phack;   
  21.     AppBarWin *parent;
  22.     CBitmapButton menuup, menudown, appup, appdown;
  23.  
  24. // Dialog Data
  25.     //{{AFX_DATA(EditDlg)
  26.     enum { IDD = IDD_EDIT };
  27.         // NOTE: the ClassWizard will add data members here
  28.     //}}AFX_DATA
  29.  
  30.  
  31. // Overrides
  32.     // ClassWizard generated virtual function overrides
  33.     //{{AFX_VIRTUAL(EditDlg)
  34.     //}}AFX_VIRTUAL
  35.  
  36. // Implementation
  37. protected:
  38.     // Generated message map functions
  39.     //{{AFX_MSG(EditDlg)
  40.     afx_msg void OnAppDown();
  41.     afx_msg void OnAppUp();
  42.     afx_msg void OnMenuDown();
  43.     afx_msg void OnMenuUp();
  44.     afx_msg void OnDelApp();
  45.     afx_msg void OnDelMenu();
  46.     afx_msg void OnNewApp();
  47.     afx_msg void OnNewMenu();
  48.     afx_msg void OnSeparator();
  49.     virtual void OnOK();
  50.     virtual BOOL OnInitDialog();
  51.     virtual void OnDropFiles(HDROP hd);
  52.     afx_msg void OnDblclkApplist();
  53.     afx_msg void OnDblclkMenulist();
  54.     afx_msg void OnSelchangeMenulist();
  55.     afx_msg void OnSelchangeApplist();
  56.     //}}AFX_MSG
  57.     DECLARE_MESSAGE_MAP()
  58. };
  59.  
  60. #endif
  61.